home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / ver_cont / cvs-1.8 / cvs-1 / cvs-1.8.1 / tools / Makefile.in < prev    next >
Encoding:
Makefile  |  1996-05-06  |  1.8 KB  |  77 lines

  1. # Makefile for GNU CVS auxiliary tools.
  2. # Do not use this makefile directly, but only from `../Makefile'.
  3. # Copyright (C) 1986, 1988-1990 Free Software Foundation, Inc.
  4.  
  5. # This program is free software; you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation; either version 2, or (at your option)
  8. # any later version.
  9.  
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. # GNU General Public License for more details.
  14.  
  15. # You should have received a copy of the GNU General Public License
  16. # along with this program; if not, write to the Free Software
  17. # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  
  19. # $CVSid: @(#)Makefile.in 1.6 94/10/22 $
  20.  
  21. SHELL = /bin/sh
  22.  
  23. srcdir     = @srcdir@
  24. top_srcdir = @top_srcdir@
  25. VPATH      = @srcdir@
  26.  
  27. prefix = @prefix@
  28. exec_prefix = @exec_prefix@
  29.  
  30. # Where to put the manual pages.
  31. mandir = $(prefix)/man
  32.  
  33. # Use cp if you don't have install.
  34. INSTALL = @INSTALL@
  35.  
  36. DISTFILES = ChangeLog README .cvsignore Makefile.in
  37.  
  38. all: Makefile
  39. .PHONY: all
  40.  
  41. install: all
  42.     @echo "pcl-cvs not installed"
  43. .PHONY: install
  44.  
  45. tags:
  46. .PHONY: tags
  47.  
  48. TAGS:
  49. .PHONY: TAGS
  50.  
  51. ls:
  52.     @echo $(DISTFILES)
  53. .PHONY: ls
  54.  
  55. clean:
  56.     /bin/rm -f *.o core
  57. .PHONY: clean
  58.  
  59. distclean: clean
  60.     rm -f Makefile pcl-cvs/Makefile
  61. .PHONY: distclean
  62.  
  63. realclean: distclean
  64. .PHONY: realclean
  65.  
  66. dist-dir:
  67.     mkdir ${DISTDIR}
  68.     for i in ${DISTFILES}; do \
  69.       ln $(srcdir)/$${i} ${DISTDIR}; \
  70.     done
  71.     cd pcl-cvs; ${MAKE} dist-dir DISTDIR="../${DISTDIR}/pcl-cvs"
  72. .PHONY: dist-dir
  73.  
  74. subdir = tools
  75. Makefile: ../config.status Makefile.in
  76.     cd .. && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= ./config.status
  77.